home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 019 / blackjack / nfrom.c < prev    next >
C/C++ Source or Header  |  1995-03-17  |  240b  |  15 lines

  1. /* NFROM.C     return a number between low and high, inclusice
  2.  */
  3.  
  4. #include "local.h"
  5.  
  6. short nfrom(low, high)
  7.    register short low, high;
  8. {
  9.    int rand();
  10.    register short nb = high - low + 1;
  11.  
  12.    return ((short)(rand() % nb + low));
  13. }
  14.  
  15.